home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
ANSWERS
/
CH03_1A.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
280b
|
25 lines
main()
{
int index;
for(index = 0 ; index < 10 ; index = index + 1)
printf("John Q. Doe\n");
}
/* Result of execution
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
*/